Fox's Git Mirrors
pkg/zenfix/parse.go 83609bcb589eb3cfc35b98ecc0b3327b2ae99d77 (83609bcb) Text, 297 B
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 Quad4.io
package zenfix
import (
"go/ast"
"go/parser"
"go/token"
)
func parserParseFile(fset *token.FileSet, path string, src any) (*ast.File, error) {
return parser.ParseFile(fset, path, src, parser.SkipObjectResolution)
}
Served by rngit 1.5.2 - Generated in 0.02s